home *** CD-ROM | disk | FTP | other *** search
- @echo off
- cls
- mode co80
-
-
- :langSel
- cls
- echo.
- echo.
- echo ┌─────────────── AOD INSTALLATION ────────────────┐
- echo │ Copyright 1995 Dynamix │
- echo │ │
- echo │ │
- echo │ If you want to run the program in English, press 'E'. │
- echo │ │
- echo │ Pour utiliser le programme Français, pressez 'F'. │
- echo │ │
- echo │ Um das Spiel in Deutsch zu spielen, 'D' eingeben. │
- echo │ │
- echo │ │
- echo └───────────────────────────────────────────────────────┘
- echo.
- echo.
-
- INSTALL\FILES\GETKEY.COM
-
- :checkKey
- IF ERRORLEVEL 113 IF NOT ERRORLEVEL 114 GOTO end
- IF ERRORLEVEL 102 IF NOT ERRORLEVEL 103 GOTO French
- IF ERRORLEVEL 101 IF NOT ERRORLEVEL 102 GOTO English
- IF ERRORLEVEL 100 IF NOT ERRORLEVEL 101 GOTO German
- IF ERRORLEVEL 81 IF NOT ERRORLEVEL 82 GOTO end
- IF ERRORLEVEL 70 IF NOT ERRORLEVEL 71 GOTO French
- IF ERRORLEVEL 69 IF NOT ERRORLEVEL 70 GOTO English
- IF ERRORLEVEL 68 IF NOT ERRORLEVEL 69 GOTO German
- goto end
-
-
- :English
- IF NOT EXIST DS\*.* GOTO enginst
- cd ds
- call showfile engaod.txt
- cd\
-
- :enginst
- cd install\english
- call inst.exe -f %1 %2
-
- rem *** make sure install was completed before running soundset ***
- IF NOT EXIST SOUNDSET.EXE GOTO end
- IF NOT EXIST RESOURCE.CFG GOTO end
- call soundset
-
- echo.
- echo.
- echo.
- echo.
- echo. To play the demo NOW:
- echo. Type AODDEMO and press [ENTER].
- echo.
- echo. To play the demo LATER:
- echo. CD to the directory on your hard drive where you
- echo. installed the demo.
- echo. Make sure the CD-ROM is in the drive.
- echo. Type AODDEMO and press [ENTER].
- echo.
- echo. If you should ever need to change your sound card
- echo. selection or settings, CD to the directory on your
- echo. hard drive where you installed the demo and
- echo. run SOUNDSET again.
-
- goto end
-
-
-
-
-
- :German
- IF NOT EXIST DS\*.* GOTO gerinst
- cd ds
- call showfile geraod.txt G
- cd\
-
- :gerinst
- cd install\german
- call inst.exe -f %1 %2
-
- rem *** make sure install was completed before running soundset ***
- IF NOT EXIST SOUNDSET.EXE GOTO end
- IF NOT EXIST RESOURCE.CFG GOTO end
-
- call soundset
-
-
- rem german translation here
- echo. Um jetzt zu spielen:
- echo. Geben Sie ein: AODDEMO [EINGABE].
- echo.
- echo. Um später zu spielen:
- echo. Wechseln Sie zum Spielverzeichnis,
- echo. und legen Sie die CD ins Laufwerk ein.
- echo. Geben Sie ein: AODDEMO [EINGABE]
- echo.
- echo. Falls Sie Ihre Toneinstellungen später ändern
- echo. wollen, legen Sie die CD ins Laufwerk ein, und
- echo. starten Sie SOUNDSET noch einmal.
-
- goto end
-
-
-
-
-
- :French
- IF NOT EXIST DS\*.* GOTO frninst
- cd ds
- call showfile freaod.txt F
- cd\
-
- :frninst
- cd install\french
- call inst.exe -f %1 %2
-
- rem *** make sure install was completed before running soundset ***
- IF NOT EXIST SOUNDSET.EXE GOTO end
- IF NOT EXIST RESOURCE.CFG GOTO end
-
- call soundset
-
- rem french translation
- echo. Pour jouer maintenant:
- echo. Tapez AODDEMO et appuyez sur [ENTREE].
- echo.
- echo. Pour jouer plus tard:
- echo. Ouvrez le répertoire du jeu.
- echo. Assurez-vous que le CD se trouve dans le lecteur.
- echo. Tapez AODDEMO et appuyez sur [ENTREE].
- echo.
- echo. Si vous devez modifier la sélection ou les paramètres
- echo. de la carte sonore, ouvrez le répertoire du jeu,
- echo. et lancez à nouveau SOUNDSET.
-
- goto end
-
-
- :end
-
-